home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / knowhow4 / board.cpp < prev    next >
C/C++ Source or Header  |  1994-10-10  |  355b  |  16 lines

  1. #include "board.h"
  2. #include "pcx.h"
  3.  
  4. //////////////////////////
  5. void Board::show()
  6.     {
  7.     Window::show();
  8.     rect r = user_screen();
  9.     r.origin.X = r.origin.X / 8 * 8 + 8;
  10.     r.corner.X-= 8;
  11.     int* cells = pScreenSet->get_cells(r);
  12.     pcx_file_scr(picName, r.origin, cells);
  13.     delete cells;
  14.     }
  15. //////////////////////////////
  16.